home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / DJSRC111.ZIP / go32 / ed / stab.h < prev    next >
Text File  |  1993-06-26  |  1KB  |  50 lines

  1. /* This is file STAB.H */
  2. /*
  3. ** Copyright (C) 1993 DJ Delorie, 24 Kirsten Ave, Rochester NH 03867-2954
  4. **
  5. ** This file is distributed under the terms listed in the document
  6. ** "copying.dj", available from DJ Delorie at the address above.
  7. ** A copy of "copying.dj" should accompany this file; if not, a copy
  8. ** should be available from where this file was obtained.  This file
  9. ** may not be distributed without a verbatim copy of "copying.dj".
  10. **
  11. ** This file is distributed WITHOUT ANY WARRANTY; without even the implied
  12. ** warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. */
  14.  
  15. #if !defined (N_UNDF)
  16. #define N_UNDF 0
  17. #endif
  18. #if !defined (N_ABS)
  19. #define N_ABS 2
  20. #endif
  21. #if !defined (N_TEXT)
  22. #define N_TEXT 4
  23. #endif
  24. #if !defined (N_DATA)
  25. #define N_DATA 6
  26. #endif
  27. #if !defined (N_BSS)
  28. #define N_BSS 8
  29. #endif
  30. #if !defined (N_FN)
  31. #define N_FN 15
  32. #endif
  33.  
  34. #if !defined (N_EXT)
  35. #define N_EXT 1
  36. #endif
  37. #if !defined (N_TYPE)
  38. #define N_TYPE 0x1e
  39. #endif
  40. #if !defined (N_STAB)
  41. #define N_STAB 0xe0
  42. #endif
  43.  
  44. #if !defined (N_SO)
  45. #define N_SO 0x64
  46. #endif
  47. #if !defined (N_SLINE)
  48. #define N_SLINE 0x44
  49. #endif
  50.